All Questions
46 questions
0votes
1answer
103views
How to load Javascript code or functions.php later in a child theme?
I'm placing some JS code in functions.php in my child theme but it loads first than anything else. Thus, I'm trying to get it to load later than the rest cos it needs Jquery. I tried enqueuing WP's ...
0votes
1answer
132views
"The editor has encountered an unexpected error" After add defer tag to java script
I added below script to add defer tag in javascripts. Once it added to function.php Gets error on create post "The editor has encountered an unexpected error." I cannot create or edit post. ...
-1votes
1answer
1kviews
How to make JQuery load on top of head tag before everything
my website and plugins insert some jquery code between HTML tag and also whatever I do to insert jquery as a first script in the head section I can't get it to work I tried function ...
1vote
3answers
1kviews
Enqueuing javascript files
I'm trying to enqueue a JS file (located at /js/example-script.js), just to get an alert on page load. Can anyone tell me what I'm doing wrong? In my example-script.js: jQuery(document).ready(...
0votes
1answer
1kviews
Add a Script button in W3 Total Cache plugin not working due to conflicting jQuery version
While trying to fix the Render-Blocking issue on my website, I ran into a problem with the W3 Total Cache plugin on its Minify settings page. The two buttons to add JS (Add a script) and CSS (Add a ...
2votes
1answer
2kviews
Use js script from one plugin in another plugin
I have two plugins that work together (one is an add-on of sorts). In the "main" plugin, I have a js function in a file located like so: wp-plugins/main-plugin-name/js/main-js.js If my secondary ...
0votes
0answers
21views
jQuery isn't working with wp_enqueue_script() [duplicate]
I'm trying to set focus to textbox in a modal using the code below: $('#search-modal').on('shown.bs.modal', function () { $('#s').focus(); }); this code is in script.js file which I add it using ...
1vote
1answer
45views
jQuery not available to other scripts
I'm getting console errors that "jQuery is not a function" even though: a) it IS being enqueued correctly and called in the header b) it IS listed as a dependency for the scripts that are enqueued. ...
-1votes
2answers
852views
bootstrap-slider.js by seiyria not working in wordpress
bootstrap-slider.js offered by seiyria not working in WordPress. It seems that resource file isn't linked properly. What am I missing here? Any idea? Link Resource to WordPress(functions.php): ...
0votes
0answers
63views
JavaScript code do not works on online server
I am using a jQuery Image Zoom plugin (http://jacklmoore.com/zoom/) in my wordpress website. The matter is that it works fine in my local machine, but on online server don't work. The JavaScript ...
0votes
1answer
918views
How to load jQuery in TOP of wp_footer?
I have added this code to load Google hosted jQuery function replace_jquery() { if (!is_admin()) { wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery....
1vote
1answer
890views
how to en-queue jQuery to load before the </body> tag
I've enqueued all my scripts on function.php to load before the tag by passing 'true' to the fifth argument. It does works for all of them BUT jquery, any idea what I'm doing wrong? ...
2votes
2answers
5kviews
How to properly add Bootstrap and JQuery Javascripts?
I am developing my WordPress theme using Material Bootstrap Design (MDB), a Material variant that uses Bootstrap 4 plus its own code. It calls for using the following scripts... <!-- JQuery -->...
0votes
1answer
80views
Bootstrap with separate js File
I use Bootstrap for a few things in my Plugin. Now i want to move the needed js to an externeal file. But if i do this it stops working. I already searched a while but i can´t get it to work. I added ...
-1votes
2answers
6kviews
javascript not loading in wordpress
I originally posted this in the stackoverflow, but I believe it is better posted here as I am using wordpress and a wordpress function. I am trying to add the jquery cycle plugin (http://jquery....